home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEFormElementGetCollection.au3 < prev    next >
Text File  |  2006-07-14  |  488b  |  11 lines

  1. ; *******************************************************
  2. ; Example 1 - Get a reference to a specific form element by 0-based index.
  3. ;                In this case, submit a query to the Google search engine
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IECreate ("http://www.google.com")
  8. $oForm = _IEFormGetCollection ($oIE, 0)
  9. $oQuery = _IEFormElementGetCollection ($oForm, 1)
  10. _IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
  11. _IEFormSubmit ($oForm)